home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------ */
- /* Final Writer Arexx Macro - DELETE TO END OF LINE */
- /* This macro will delete text from the insertion */
- /* point to the end of the line that the insertion */
- /* point is in. */
- /* $VER: TxtDelete_ToEndOfLine 3.0 (22.7.93) */
- /* ------------------------------------------------ */
- Options Results
-
- /* ------------------------------------------ */
- /* Don't do any thing if a range is selected. */
- /* ------------------------------------------ */
- Status PARAPOS
- pos = Result
- IF ( WORDS(pos) = 4 ) THEN
- EXIT
-
- AltDown
- CtrlDown
- ShiftDown
- Cursor Right
- AltUp
- CtrlUp
- ShiftUp
-
- Cut
-
-